home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 5 / Amiga Plus Sonderheft 1996 #5.iso / programme / povray / font-4d-demo_v2.2 / getfont4drexx.mrx < prev    next >
Text File  |  1995-01-15  |  317b  |  23 lines

  1. /*
  2. ** This script shows how to obtain a list
  3. ** of an applications ARexx commands.
  4. */
  5.  
  6. options results
  7. address 'FONT4D.1'
  8.  
  9. /* read the list into a temporary file */
  10.  
  11. 'help t:_tmp'
  12.  
  13.  
  14. /* type the file to stdout */
  15.  
  16. address command "type t:_tmp"
  17.  
  18.  
  19. /* delete the temporary file */
  20.  
  21. address command "delete >nil: t:_tmp"
  22.  
  23.